home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Games / Xconq 7.0d16 / lib / crater-lake.g < prev    next >
Encoding:
Text File  |  1993-12-20  |  2.4 KB  |  86 lines  |  [TEXT/MPS ]

  1. (game-module "crater-lake"
  2.   (title "Crater Lake")
  3.   (blurb "A classic test-piece for one-on-one.")
  4.   (instructions "Claim the towns in your vicinity, then go after the enemy.")
  5.   (notes
  6.     "This features two countries connected by a forested isthmus,"
  7.     "plus an island with a town by a lake, surrounded by mountains."
  8.     "Maneuver is therefore difficult."
  9.   )
  10.   (base-module "classic")
  11.   (variants (see-all true))
  12. )
  13.  
  14. (set terrain-seen true)
  15.  
  16. ;;; We don't want anything else added.
  17.  
  18. (set synthesis-methods nil)
  19.  
  20. (set advantage-min 1)
  21. (set advantage-default 1)
  22. (set advantage-max 1)
  23.  
  24. (scorekeeper (do last-side-wins))
  25.  
  26. (world 35)
  27.  
  28. (area 35 31)
  29.  
  30. (area (terrain (by-char ".,=~+%^_")
  31.   "___________________________________"
  32.   "....+,............................."
  33.   "....+....+++++~~..................."
  34.   "........+++++++++,................."
  35.   "......++++++++++~,................."
  36.   "......%%++++++++++,................"
  37.   "...+%.++++++++++++................."
  38.   ".......++++++++++++................"
  39.   "......+++++++++++,.......,........."
  40.   ".......%++++++++++........~~......."
  41.   ".......%+++++++++.................."
  42.   "..,+%..,%++++++++.................."
  43.   "..+%%%+%%%++++++..................."
  44.   "...%%%%%%%%%%+++%.................."
  45.   "...,%%%%%,%%%%%%..................."
  46.   ".....%%%....,%%%..................."
  47.   "^%...........%%................+^^^"
  48.   "^^^%%........%%%......+........+^^^"
  49.   "^^^^%%......%%%%+.....+.......+^^^^"
  50.   ".%^^^^%.....%%%%%++,+..........^^^%"
  51.   ".+^^^^^%%...%%%%+++++..+.......^^^."
  52.   ".+^^^%%^^%..%%%%++++++..+.......^^^"
  53.   "+^^^%%%%+%..,%%+++++~+~..+......^^^"
  54.   "^^^^^%%%%%.....++++++^~++++++....^^"
  55.   "^^^^%%%%%........+++~^^^~~~~+....++"
  56.   "+^++.%%%%.........,++~~~~~+~~~....."
  57.   ".....%%+............++~~~~+........"
  58.   "......%++.............++~+........."
  59.   ".....,.++.........................."
  60.   "........+%........................."
  61.   "___________________________________"
  62. ))
  63.  
  64. (side 1 (noun "Paramagudi"))
  65.  
  66. (side 2 (noun "Vrigstader"))
  67.  
  68. (city 6 24 1 (n "Paramagudi"))
  69.  
  70. (city 20 10 2 (n "Vrigstad"))
  71.  
  72. (town 8 27 0 (n "Vryburg"))
  73. (town 3 24 0 (n "Mistake Creek"))
  74. (town 9 24 0 (n "Tooele"))
  75. (town 6 22 0 (n "Bellows Falls"))
  76. (town 10 22 0 (n "Atlasburg"))
  77. (town 6 18 0 (n "Adobe Acres"))
  78. (town 22 13 0 (n "Philomath"))
  79. (town 1 9 0 (n "Waggaman"))
  80. (town 24 9 0 (n "Yeehaw Junction"))
  81. (town 8 8 0 (n "Ushtobe"))
  82. (town 16 7 0 (n "Tillamook"))
  83. (town 20 7 0 (n "Hayti"))
  84. (town 24 7 0 (n "Bo Phloi"))
  85. (town 20 4 0 (n "Buzzards Bay"))
  86.